home *** CD-ROM | disk | FTP | other *** search
/ You're the Director / You're The Director.iso / mac / MACF / MGER.DIR / 00361_Script_361 < prev    next >
Text File  |  1995-10-10  |  338b  |  12 lines

  1. on KeyDown
  2.   global gCurrentSprite
  3.   
  4.   put "inside Keydown"
  5.   put "gCurrentSprite",gCurrentSprite
  6.   if the key = RETURN then
  7.     put "inside if key is return"
  8.     set the editableText of sprite gCurrentSprite to FALSE
  9.     put "the editableText of sprite gCurrentSprite",the editableText of sprite gCurrentSprite
  10.   end if 
  11. end
  12.